home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 January
/
PCWorld_2007-01_cd.bin
/
v cisle
/
autoit
/
autoit-v3.2.0.1-setup.exe
/
Examples
/
Helpfile
/
GUICtrlCreateMonthCal.au3
< prev
next >
Wrap
Text File
|
2006-06-17
|
349b
|
14 lines
#include <GUIConstants.au3>
GUICreate( "Get date", 210,190)
$Date = GUICtrlCreateMonthCal ("1953/03/25",10, 10)
GUISetState()
; Run the GUI until the dialog is closed or timeout
Do
$msg = GUIGetMsg()
If $msg = $Date Then MsgBox(0,"debug","calendar clicked")
Until $msg = $GUI_EVENT_CLOSE
MsgBox(0, $msg, GUICtrlread($Date), 2)